google.golang.org/grpc/internal/transport.ClientStream.nonGRPCDataBuf (field)

7 uses

	google.golang.org/grpc/internal/transport (current package)
		client_stream.go#L59: 	nonGRPCDataBuf []byte         // stores the data of a non-gRPC response.
		client_stream.go#L70: 	s.nonGRPCDataBuf = make([]byte, 0, nonGRPCDataMaxLen)
		client_stream.go#L76: 	msg := fmt.Sprintf("%s\ndata: %q", s.nonGRPCStatus.Message(), s.nonGRPCDataBuf)
		client_stream.go#L83: 	n := min(f.data.Len(), nonGRPCDataMaxLen-len(s.nonGRPCDataBuf))
		client_stream.go#L84: 	s.nonGRPCDataBuf = append(s.nonGRPCDataBuf, f.data.ReadOnlyData()[0:n]...)
		client_stream.go#L85: 	if len(s.nonGRPCDataBuf) >= nonGRPCDataMaxLen || f.StreamEnded() {